React Lazy 的实现原理

动态import():ES6的动态import()方法允许在运行时按需加载模块,返回一个Promise。React.lazy:利用动态import()方法,React.lazy可以定义懒加载组件。S...